home *** CD-ROM | disk | FTP | other *** search
/ ftp.mactech.com 2010 / ftp.mactech.com.tar / ftp.mactech.com / machack / Hacks97 / WarriorsProgress.sit / Warrior’s Progress / source code / Source / Libraries / Screen Parts / MenuBarScreenPart.cp next >
Text File  |  1997-06-28  |  313b  |  17 lines

  1. // MenuBarScreenPart.cp
  2.  
  3. #ifndef MenuBarScreenPart_h
  4. #include "MenuBarScreenPart.h"
  5. #endif
  6. #ifndef MenuBar_h
  7. #include "MenuBar.h"
  8. #endif
  9. #ifndef MouseDownEvent_h
  10. #include "MouseDownEvent.h"
  11. #endif
  12.  
  13. void MenuBarScreenPart::Click( const MouseDownEvent& event ) const
  14.   {
  15.     MenuBar::The().Click( event.Where() );
  16.   }
  17.